Wrapped Ether (WETH) Conversion & Router Overview
WETH is Wrapped Ether: native ETH locked in a smart contract and re-issued as an ERC-20 token so it can move through dApps that expect the standard token interface.
Read more
Unwrapping is how you leave — you call the contract, it burns your WETH balance, and the same amount of native ETH lands back in your wallet. This is an independent, non-custodial dashboard explaining that flow; nothing here ever takes custody of your funds.

What is Wrapped Ether (WETH)?
Getting in and out
Swapping it on a DEX
The token vs its native asset
Costs and gas
Is Unwrap WETH safe?
Problems and fixes
WETH FAQ
What is WETH?
WETH is Wrapped Ether - native ETH deposited into a smart contract and re-issued as an ERC-20 token. It exists because ETH predates the ERC-20 standard and cannot natively use the token interface most dApps require.
Is WETH the same as ETH?
In value, one WETH redeems for one ETH before gas. Mechanically, no: ETH is the network's native asset used for gas, while WETH is an ERC-20 token representing ETH held in the contract.
How do I convert WETH back to ETH?
Call withdraw(amount) on the WETH9 contract from the wallet holding the WETH. The contract burns that WETH balance and sends the same amount of native ETH back to you in one transaction; no approval is needed when you call it directly.
Is WETH always 1:1 with ETH? How is it backed?
For the canonical contract, redemption is exactly one WETH for one ETH before gas because every WETH is backed by ETH locked in the same contract. Secondary-market prices may show tiny deviations, but the contract redemption rate is fixed.
What does it cost to unwrap WETH?
WETH9 charges no protocol fee: you pay Ethereum network gas in native ETH. A DEX swap or a third-party interface may add a pool fee, price impact, or its own disclosed fee instead.
Is the WETH contract safe to use?
The canonical WETH9 contract is simple, publicly verified, and formally analyzed. Its Ethereum Mainnet identity is the WETH9 contract address, not the WETH ticker.
Notes before you unwrap weth
Unwrap WETH through the canonical contract and you are making a plain Ethereum transaction - no pool, no price, no counterparty, just your wallet telling WETH9 to return native ETH.
Keep native ETH available for gas; wrapping your last wei of ETH leaves no ETH to pay for the unwrap transaction.
Before you sign: match 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 on mainnet, keep native ETH for this transaction and the next one, and if you use a DEX read minimum received and price impact while scoping the approval to the intended trade.
Everything on this page was checked against the canonical WETH9 contract and public Ethereum documentation, last reviewed 21 July 2026.
Independent reference - confirm the route in your own wallet.